home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / precursor_name.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  98 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class PRECURSOR_NAME
  17.    --
  18.    -- The name of a Precursor RUN_FEATURE (RUN_FEATURE_10 | RUN_FEATURE_11).
  19.    --
  20.  
  21. inherit FEATURE_NAME;
  22.  
  23. creation {E_PRECURSOR} refer_to
  24.  
  25. feature
  26.  
  27.    to_key: STRING;
  28.  
  29.    to_string: STRING is
  30.       do
  31.          Result := enclosing.to_string;
  32.       end;
  33.  
  34.    start_position: POSITION is
  35.       do
  36.          Result := enclosing.start_position;
  37.       end;
  38.  
  39.    is_frozen: BOOLEAN is
  40.       do
  41.          Result := enclosing.is_frozen;
  42.       end;
  43.  
  44.    mapping_c_in(str: STRING) is
  45.       do
  46.          str.append(to_key);
  47.       end;
  48.  
  49.    declaration_in(str: STRING) is
  50.       do
  51.       end;
  52.  
  53.    pretty_print is
  54.       do
  55.          fmt.put_string(as_precursor);
  56.       end;
  57.  
  58.    declaration_pretty_print is
  59.       do
  60.       end;
  61.  
  62.    short is
  63.       do
  64.       end;
  65.  
  66. feature {RUN_FEATURE,FEATURE_NAME}
  67.  
  68.    put_cpp_tag is
  69.       do
  70.          cpp.put_string(as_precursor);
  71.          cpp.put_character(' ');
  72.       end;
  73.  
  74. feature {NONE}
  75.  
  76.    enclosing: FEATURE_NAME;
  77.          -- Name of the enclosing RUN_FEATURE which contains the
  78.          -- Precursor call.
  79.  
  80.    refer_to(id: INTEGER; e: like enclosing) is
  81.          -- Where `id' is the base class id of the Precursor routine.
  82.       require
  83.          e /= Void
  84.       do
  85.          enclosing := e;
  86.          !!to_key.make(8 + enclosing.to_key.count);
  87.          to_key.extend('_');
  88.          id.append_in(to_key);
  89.          to_key.extend('P');
  90.          to_key.append(enclosing.to_key);
  91.          to_key := string_aliaser.item(to_key);
  92.       ensure
  93.          enclosing = e;
  94.       end;
  95.  
  96. end
  97.  
  98.